[USER (data scientist)]: Hey there! I've got this dataset with original and updated odds for some matches, and I wanna take a closer look at the differences between them. Can you lend me a hand? Please note that the original odds are in 'Original Odd_1' and 'Original Odd_2', and the updated odds are in 'Updated Odd_1' and 'Updated Odd_2' Please generate and display a DataFrame that calculates the differences between the original and updated odds for players in the ATP tennis dataset.
My template of code snippet is:

---BEGIN CODE TEMPLATE---

import pandas as pd
import numpy as np
import pickle

atp_tennis = pd.read_csv('atp_tennis.csv')

# YOUR SOLUTION BEGIN:
<code1>
[COMPLETE YOUR CODE] 
</code1>
# YOUR SOLUTION END

print(updated_odds_df)

# save data
pickle.dump(updated_odds_df,open("./pred_result/updated_odds_df.pkl","wb"))

---END CODE TEMPLATE---

[YOU (AI assistant)]: Awesome! Let's whip up two new columns in your dataframe to store the differences between the original and updated odds. Here's the code you'll need: 
'''
import pandas as pd
import numpy as np
import pickle

atp_tennis = pd.read_csv('atp_tennis.csv')

# YOUR SOLUTION BEGIN:
